summary refs log blame commit diff
path: root/pkgs/development/python-modules/sortedcollections/default.nix
blob: b8261d88628cd588ba7a314d42e66b6c24e81250 (plain) (tree)
1
2
3
4
5
6
7
8
9







                              
                    


                          
                                                                    

    
                                               
 
                            








                                                                 
{ stdenv
, buildPythonPackage
, fetchPypi
, sortedcontainers
}:

buildPythonPackage rec {
  pname = "sortedcollections";
  version = "1.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "12nkw69lnyvh9wy6rsd0ng4bcia81vkhj1rj1kj1k3vzppn0sgmr";
  };

  propagatedBuildInputs = [ sortedcontainers ];

  # No tests in PyPi tarball
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Python Sorted Collections";
    homepage = http://www.grantjenks.com/docs/sortedcollections/;
    license = licenses.asl20;
  };

}