mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
python3Packages.voluptuous-serialize: 2.5.0 -> 2.6.0
https://github.com/home-assistant-libs/voluptuous-serialize/releases/tag/2.6.0
This commit is contained in:
parent
4b57d35c27
commit
cbf6d89a82
@ -8,25 +8,30 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "voluptuous-serialize";
|
||||
version = "2.5.0";
|
||||
version = "2.6.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "home-assistant-libs";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-8rWMz8tBanxHdU/F4HhBxxz3ltqbdRoP4JED2dmZfTk=";
|
||||
repo = "voluptuous-serialize";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-vvreXSQDkA3JkZpOKZqJgMRyObJX/cSR8r+A26h9fNE=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ voluptuous ];
|
||||
propagatedBuildInputs = [
|
||||
voluptuous
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
voluptuous
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "voluptuous_serialize" ];
|
||||
pythonImportsCheck = [
|
||||
"voluptuous_serialize"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/home-assistant-libs/voluptuous-serialize";
|
||||
|
Loading…
Reference in New Issue
Block a user