Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / yacs / default.nix
blobde2a27a937977c46e150b6b3dd04059dbee69f92
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , python
5 , pyyaml
6 }:
8 buildPythonPackage rec {
9   pname = "yacs";
10   version = "0.1.8";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "rbgirshick";
15     repo = "yacs";
16     rev = "v${version}";
17     hash = "sha256-nO8FL4tTkfTthXYXxXORLieFwvn780DDxfrxC9EUUJ0=";
18   };
20   propagatedBuildInputs = [ pyyaml ];
22   pythonImportsCheck = [ "yacs" ];
23   checkPhase = ''
24     ${python.interpreter} yacs/tests.py
25   '';
27   meta = with lib; {
28     description = "Yet Another Configuration System";
29     homepage = "https://github.com/rbgirshick/yacs";
30     license = licenses.asl20;
31     maintainers = with maintainers; [ lucasew ];
32   };