blob: 18d08fec87c4f41a0f4027f9ce97d6aee96480f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
};
}
|