Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / laces / default.nix
blobd29396658150b0db202e384c0e7cc7a29c16ce83
1 { lib
2 , buildPythonPackage
3 , django
4 , fetchFromGitHub
5 , flit-core
6 , python3
7 }:
9 buildPythonPackage rec {
10   pname = "laces";
11   version = "0.1.1";
12   pyproject = true;
14   src = fetchFromGitHub {
15     owner = "tbrlpld";
16     repo = "laces";
17     rev = "v${version}";
18     hash = "sha256-N3UUJomlihdM+6w9jmn9t10Q2meIqEOjW/rf3ZLrD78=";
19   };
21   nativeBuildInputs = [
22     flit-core
23   ];
25   propagatedBuildInputs = [
26     django
27   ];
29   pythonImportsCheck = [ "laces" ];
31   meta = with lib; {
32     description = "Django components that know how to render themselves";
33     homepage = "https://github.com/tbrlpld/laces";
34     changelog = "https://github.com/tbrlpld/laces/blob/${src.rev}/CHANGELOG.md";
35     license = licenses.bsd3;
36     maintainers = with maintainers; [ sephi ];
37   };