mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-16 17:13:21 +00:00
pythonPackages.strictyaml: init at 1.0.1
This commit is contained in:
parent
467ce7b534
commit
5e85d08484
29
pkgs/development/python-modules/strictyaml/default.nix
Normal file
29
pkgs/development/python-modules/strictyaml/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ buildPythonPackage
|
||||
, lib
|
||||
, fetchPypi
|
||||
, ruamel_yaml
|
||||
, python-dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "1.0.1";
|
||||
pname = "strictyaml";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1baz5zjl1z9dwaczaga1ik1iy1v9zg3acwnpmgghwnk9hw2i1mq6";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ ruamel_yaml python-dateutil ];
|
||||
|
||||
# Library tested with external tool
|
||||
# https://hitchdev.com/approach/contributing-to-hitch-libraries/
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Strict, typed YAML parser";
|
||||
homepage = https://hitchdev.com/strictyaml/;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
|
@ -5534,6 +5534,8 @@ in {
|
|||
|
||||
strict-rfc3339 = callPackage ../development/python-modules/strict-rfc3339 { };
|
||||
|
||||
strictyaml = callPackage ../development/python-modules/strictyaml { };
|
||||
|
||||
twilio = callPackage ../development/python-modules/twilio { };
|
||||
|
||||
uranium = callPackage ../development/python-modules/uranium { };
|
||||
|
|
Loading…
Reference in a new issue