python3Packages.pyschemes: init at master
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
parent
df37224921
commit
9960131177
2 changed files with 36 additions and 0 deletions
34
pkgs/development/python-modules/pyschemes/default.nix
Normal file
34
pkgs/development/python-modules/pyschemes/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonAtLeast
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyschemes";
|
||||
version = "unstable-2017-11-08";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonAtLeast "3.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "spy16";
|
||||
repo = pname;
|
||||
rev = "ca6483d13159ba65ba6fc2f77b90421c40f2bbf2";
|
||||
hash = "sha256-PssucudvlE8mztwVme70+h+2hRW/ri9oV9IZayiZhdU=";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pyschemes" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A library for validating data structures in Python";
|
||||
homepage = "https://github.com/spy16/pyschemes";
|
||||
license = licenses.wtfpl;
|
||||
maintainers = with maintainers; [ gador ];
|
||||
};
|
||||
}
|
|
@ -6470,6 +6470,8 @@ in {
|
|||
|
||||
pysbd = callPackage ../development/python-modules/pysbd { };
|
||||
|
||||
pyschemes = callPackage ../development/python-modules/pyschemes { };
|
||||
|
||||
pyshark = callPackage ../development/python-modules/pyshark { };
|
||||
|
||||
pysiaalarm = callPackage ../development/python-modules/pysiaalarm { };
|
||||
|
|
Loading…
Reference in a new issue