mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nix-repo.git
synced 2024-11-23 12:31:28 +00:00
31 lines
571 B
Nix
31 lines
571 B
Nix
|
{ lib, buildPythonPackage }
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "strawberry-graphql";
|
||
|
version = "0.114.5";
|
||
|
format = "pyproject";
|
||
|
patches = [
|
||
|
./strawberry-graphql.patch
|
||
|
];
|
||
|
propagatedBuildInputs = [
|
||
|
typing-extensions
|
||
|
graphql-core
|
||
|
python-multipart
|
||
|
python-dateutil
|
||
|
flask
|
||
|
pydantic
|
||
|
pygments
|
||
|
poetry
|
||
|
];
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "b6e007281cf29a66eeba66a512744853d8aa53b4ca2525befb6f350bb7b24df6";
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://strawberry.rocks/";
|
||
|
license = "MIT";
|
||
|
};
|
||
|
}
|