evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / roman / default.nix
blob83ab749a7889fa0846f1aa5022e0a18785676bdb
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   version = "2.0.0";
9   format = "setuptools";
10   pname = "roman";
12   src = fetchPypi {
13     inherit pname version;
14     extension = "zip";
15     sha256 = "90e83b512b44dd7fc83d67eb45aa5eb707df623e6fc6e66e7f273abd4b2613ae";
16   };
18   meta = with lib; {
19     description = "Integer to Roman numerals converter";
20     homepage = "https://pypi.python.org/pypi/roman";
21     license = licenses.psfl;
22   };