vscode-extensions.github.copilot{*}: bump (#364729)
[NixPkgs.git] / pkgs / development / python-modules / laces / default.nix
blob9f5c74af83295b84b29ba021cda94a6b1b8ece87
2   lib,
3   buildPythonPackage,
4   django,
5   fetchFromGitHub,
6   flit-core,
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 = [ flit-core ];
23   propagatedBuildInputs = [ django ];
25   pythonImportsCheck = [ "laces" ];
27   meta = with lib; {
28     description = "Django components that know how to render themselves";
29     homepage = "https://github.com/tbrlpld/laces";
30     changelog = "https://github.com/tbrlpld/laces/blob/${src.rev}/CHANGELOG.md";
31     license = licenses.bsd3;
32     maintainers = with maintainers; [ sephi ];
33   };