diff options
author | tv <tv@krebsco.de> | 2020-05-29 12:40:51 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-05-29 12:40:51 +0200 |
commit | 0ae752cefe8aa92e00ab704844309bc2de58adbf (patch) | |
tree | e12ccec69c1add3beed2fe866c1cfcc3c827a416 /krebs/5pkgs/simple | |
parent | a406f014ea148fe11eb2303a4d631678e41bcd6f (diff) |
python-dnsstamps: init at 1.3.0
Diffstat (limited to 'krebs/5pkgs/simple')
-rw-r--r-- | krebs/5pkgs/simple/python-dnsstamps.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/krebs/5pkgs/simple/python-dnsstamps.nix b/krebs/5pkgs/simple/python-dnsstamps.nix new file mode 100644 index 000000000..18d08fec8 --- /dev/null +++ b/krebs/5pkgs/simple/python-dnsstamps.nix @@ -0,0 +1,21 @@ +{ python3Packages, lib }: + +python3Packages.buildPythonPackage rec { + pname = "dnsstamps"; + version = "1.3.0"; + + src = python3Packages.fetchPypi { + inherit pname version; + hash = "sha256:1v334glljw60h9v739jgl8hmyldaawbpv55bbhwq1hcwm5lvdk13"; + }; + + postInstall = '' + mv $out/bin/dnsstamp.py $out/bin/dnsstamp + ''; + + meta = { + description = "Create and parse DNS stamps with ease"; + homepage = "https://github.com/chrisss404/python-dnsstamps"; + license = lib.licenses.mit; + }; +} |