pythonPackages.morphys: init at 1.0

This commit is contained in:
Rakesh Gupta 2020-04-01 15:39:23 +05:30 committed by Jon
parent f1090bdaf8
commit b1aca4f66a
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ buildPythonPackage
, fetchFromGitHub
, lib
}:
buildPythonPackage rec {
pname = "morphys";
version = "1.0";
src = fetchFromGitHub {
owner = "mkalinski";
repo = "morphys";
rev = "0642a71126c32cd26b3a443a5cac27e4e1f7240f";
sha256 = "1da8s04m5wwih9cvkrks3ymb8v082lia47f274hxmfhi6ma3qc8b";
};
pythonImportsCheck = [ "morphys" ];
meta = with lib; {
description = "Smart conversions between unicode and bytes types";
homepage = "https://github.com/mkalinski/morphys";
license = licenses.mit;
maintainers = with maintainers; [ rakesh4g ];
};
}

View File

@ -6892,6 +6892,8 @@ in {
callPackage ../development/python-modules/more-itertools/2.7.nix { }
else callPackage ../development/python-modules/more-itertools { };
morphys = callPackage ../development/python-modules/morphys { };
jaraco_functools = callPackage ../development/python-modules/jaraco_functools { };
jaraco_classes = callPackage ../development/python-modules/jaraco_classes { };