pyznap: 1.1.2 -> 1.2.1

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pyznap/versions
This commit is contained in:
R. RyanTM 2019-07-20 06:45:54 -07:00 committed by Mario Rodas
parent 58f5c8e0cb
commit 29d44d5128
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8

View file

@ -1,21 +1,17 @@
{ lib
, buildPythonApplication
, fetchPypi
, paramiko
, configparser
}:
buildPythonApplication rec {
pname = "pyznap";
version = "1.1.2";
version = "1.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "9ac0da5d7f6461d1d6f128362786e297144b415f9e3a2f1835642ab3dda82d55";
sha256 = "0pnngr4zdxkf6b570ikzvkrm3a8fr47w6crjaw7ln094qkniywvj";
};
propagatedBuildInputs = [ configparser paramiko ];
# tests aren't included in the PyPI packages
doCheck = false;