lol

pythonPackages.schema-salad: init at 8.1.20210716111910

+47
+45
pkgs/development/python-modules/schema-salad/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , cachecontrol 5 + , lockfile 6 + , mistune 7 + , rdflib 8 + , rdflib-jsonld 9 + , ruamel_yaml 10 + , pytestCheckHook 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "schema-salad"; 15 + version = "8.1.20210716111910"; 16 + 17 + src = fetchPypi { 18 + inherit pname version; 19 + sha256 = "3f851b385d044c58d359285ba471298b6199478a4978f892a83b15cbfb282f25"; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + cachecontrol 24 + lockfile 25 + mistune 26 + rdflib 27 + rdflib-jsonld 28 + ruamel_yaml 29 + ]; 30 + 31 + checkInputs = [ pytestCheckHook ]; 32 + disabledTests = [ 33 + # setup for these tests requires network access 34 + "test_secondaryFiles" 35 + "test_outputBinding" 36 + ]; 37 + pythonImportsCheck = [ "schema_salad" ]; 38 + 39 + meta = with lib; { 40 + description = "Semantic Annotations for Linked Avro Data"; 41 + homepage = "https://github.com/common-workflow-language/schema_salad"; 42 + license = with licenses; [ asl20 ]; 43 + maintainers = with maintainers; [ veprbl ]; 44 + }; 45 + }
+2
pkgs/top-level/python-packages.nix
··· 7793 7793 7794 7794 schema = callPackage ../development/python-modules/schema { }; 7795 7795 7796 + schema-salad = callPackage ../development/python-modules/schema-salad { }; 7797 + 7796 7798 schiene = callPackage ../development/python-modules/schiene { }; 7797 7799 7798 7800 scikit-bio = callPackage ../development/python-modules/scikit-bio { };