summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2020-05-29 12:40:51 +0200
committertv <tv@krebsco.de>2020-05-29 12:40:51 +0200
commit0ae752cefe8aa92e00ab704844309bc2de58adbf (patch)
treee12ccec69c1add3beed2fe866c1cfcc3c827a416 /krebs
parenta406f014ea148fe11eb2303a4d631678e41bcd6f (diff)
python-dnsstamps: init at 1.3.0
Diffstat (limited to 'krebs')
-rw-r--r--krebs/5pkgs/simple/python-dnsstamps.nix21
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 00000000..18d08fec
--- /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;
+ };
+}