Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / django-types / default.nix
blob908fb1bd0ed1f2614627e15f200b95dd8dbe4c46
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , poetry-core
5 , types-psycopg2
6 }:
8 buildPythonPackage rec {
9   pname = "django-types";
10   version = "0.19.1";
11   pyproject = true;
13   src = fetchPypi {
14     pname = "django_types";
15     inherit version;
16     hash = "sha256-WueYhhLPb7w1ewGLvDs6h4tl4EJ1zEbg011mpwja/xI=";
17   };
19   nativeBuildInputs = [
20     poetry-core
21   ];
23   propagatedBuildInputs = [
24     types-psycopg2
25   ];
27   meta = with lib; {
28     description = "Type stubs for Django";
29     homepage = "https://github.com/sbdchd/django-types";
30     license = licenses.mit;
31     maintainers = with maintainers; [ thubrecht ];
32   };