My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ruamel-base/default.nix

27 lines
568 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "ruamel-base";
version = "1.0.0";
src = fetchPypi {
pname = "ruamel.base";
inherit version;
sha256 = "1wswxrn4givsm917mfl39rafgadimf1sldpbjdjws00g1wx36hf0";
};
# no tests
doCheck = false;
pythonImportsCheck = [ "ruamel.base" ];
meta = with lib; {
description = "Common routines for ruamel packages";
homepage = "https://sourceforge.net/projects/ruamel-base/";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}