pythonPackages.morphys: init at 1.0
This commit is contained in:
parent
f1090bdaf8
commit
b1aca4f66a
24
pkgs/development/python-modules/morphys/default.nix
Normal file
24
pkgs/development/python-modules/morphys/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user