depot/third_party/nixpkgs/pkgs/development/python-modules/roman/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

22 lines
434 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "2.0.0";
pname = "roman";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "90e83b512b44dd7fc83d67eb45aa5eb707df623e6fc6e66e7f273abd4b2613ae";
};
meta = with lib; {
description = "Integer to Roman numerals converter";
homepage = "https://pypi.python.org/pypi/roman";
license = licenses.psfl;
};
}