ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / sortedcollections / default.nix
blob9f9f99a1856c8b42d159c100001f4d45b963f629
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytest-cov
5 , pytestCheckHook
6 , sortedcontainers
7 }:
9 buildPythonPackage rec {
10   pname = "sortedcollections";
11   version = "2.1.0";
13   src = fetchFromGitHub {
14     owner = "grantjenks";
15     repo = "python-sortedcollections";
16     rev = "v${version}";
17     sha256 = "sha256-GkZO8afUAgDpDjIa3dhO6nxykqrljeKldunKMODSXfg=";
18   };
20   propagatedBuildInputs = [ sortedcontainers ];
22   checkInputs = [
23     pytest-cov
24     pytestCheckHook
25   ];
27   pythonImportsCheck = [ "sortedcollections" ];
29   meta = with lib; {
30     description = "Python Sorted Collections";
31     homepage = "http://www.grantjenks.com/docs/sortedcollections/";
32     license = with licenses; [ asl20 ];
33     maintainers = with maintainers; [ fab ];
34   };