mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
22 lines
425 B
Nix
22 lines
425 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ruamel.base";
|
|
version = "1.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1wswxrn4givsm917mfl39rafgadimf1sldpbjdjws00g1wx36hf0";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Common routines for ruamel packages";
|
|
homepage = "https://sourceforge.net/projects/ruamel-base/";
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|